home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Tools / Win95 Secrets / SETUP.Z / SHOWWND.RC < prev    next >
Encoding:
Text File  |  1995-07-19  |  781 b   |  19 lines

  1. #define WIN32_LEAN_AND_MEAN
  2. #include <windows.h>
  3. #include "showwnd.h"
  4.  
  5. ShowWndDlg DIALOG 10, 20, 360, 280
  6. STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX
  7. CAPTION "ShowWnd - Matt Pietrek 1995"
  8. FONT 8, "MS Sans Serif"
  9. {
  10.  PUSHBUTTON "Refresh", IDC_BUTTON_REFRESH, 4, 6, 50, 14
  11.  PUSHBUTTON "Exit", IDC_BUTTON_EXIT, 308, 6, 50, 14
  12.  LISTBOX IDC_LB_MAIN_LIST, 4, 30, 186, 228, LBS_NOTIFY | WS_BORDER | LBS_USETABSTOPS | WS_BORDER | WS_VSCROLL | WS_GROUP | WS_TABSTOP
  13.  LISTBOX IDC_LB_DETAILS, 200, 30, 156, 228, LBS_NOTIFY | WS_BORDER | WS_BORDER | WS_VSCROLL | WS_TABSTOP
  14.  LTEXT "", IDC_DETAILS_TYPE, 200, 12, 104, 8
  15.  LTEXT "Lines with a '+' can be double-clicked to expand", -1, 120, 268, 200, 8
  16. }
  17.  
  18. ShowWndIcon ICON "showwnd.ico"
  19.